home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 2005 June (DVD) / DPPRO0605DVD.iso / Install / program files / Borland / BDS / 3.0 / Demos / Delphi.Net / VCL / Shape / ShapeChanger.dpr < prev    next >
Encoding:
Text File  |  2004-10-22  |  341 b   |  16 lines

  1. program ShapeChanger;
  2.  
  3. {%DelphiDotNetAssemblyCompiler '$(SystemRoot)\microsoft.net\framework\v1.1.4322\System.Drawing.dll'}
  4.  
  5. uses
  6.   Borland.Vcl.Forms,
  7.   Shapes in 'Shapes.pas' {Form1};
  8.  
  9. [STAThread]
  10. begin
  11.   Application.Initialize;
  12.   Application.CreateForm(TForm1, Form1);
  13.   Form1.Position := poDefault;
  14.   Application.Run;
  15. end.
  16.